home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DUProjects / Events / Sources / Defines.k < prev    next >
Encoding:
Text File  |  1996-08-16  |  992 b   |  28 lines  |  [TEXT/CWIE]

  1. //    Copyright:    © 1996 by Apple Computer, Inc., All rights reserved.
  2. //    Release Version:    $ ODF 1 $
  3.  
  4. #ifndef DEFINES_K
  5. #define DEFINES_K
  6.  
  7. // Uncomment the following three lines, and define them appropriately!!
  8. // If your part can be a container for other parts, define FW_SUPPORTS_EMBEDDING
  9. // to be 1.  Otherwise define it to be 0.
  10. // If your part defines any ODExtensions, define FW_SUPPORTS_EXTENSIONS to be
  11. // 1 to enable the extensions manager.  Otherwise, define it to be 0.
  12. // If your part is scriptable, define FW_SUPPORTS_SCRIPTING to be 1. Otherwise,
  13. // define it to be zero.  Note that if your part is scriptable is must support
  14. // extensions, so FW_SUPPORTS_EXTENSIONS must be defined to be 1.
  15.  
  16. #define FW_SUPPORTS_EMBEDDING 0
  17. #define FW_SUPPORTS_EXTENSIONS 0
  18. #define FW_SUPPORTS_SCRIPTING 0
  19.  
  20. //===================================================
  21. #define kPartIconID     128
  22. #define kAbout            1024
  23. #define kPartInfoID        1024
  24.  
  25. //===================================================
  26. #endif
  27.  
  28.